home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 108 / MacAddict108.iso / Software / Internet & Communication / JunkMatcher 1.5.5.dmg / JunkMatcher.app / Contents / Resources / feedbackAppleScript.txt < prev    next >
Encoding:
Text File  |  2005-06-01  |  427 b   |  10 lines

  1. tell application "Mail"
  2.     set infoStr to "\n\n------ System Information ------\nMail:" & version & "; %s"
  3.     set newmessage to make new outgoing message with properties {subject:"JunkMatcher: Feedback", content:infoStr, visible: false}
  4.     tell newmessage
  5.         make new to recipient at end of to recipients with properties {name:"Benjamin Han", address:"benhdj@users.sourceforge.net"}
  6.         set visible to true
  7.     end tell
  8.     activate
  9. end tell
  10.